home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1998 July / Software of the Month Club 1998 July.iso / pc / Business / Fincalc / FINCALC.CHF < prev    next >
Text File  |  1997-11-14  |  632b  |  28 lines

  1. REM -----------------------------------------------------------------
  2. REM --- FINCALC BATCH FILE TO RUN FROM SETUP.EXE
  3. REM -----------------------------------------------------------------
  4.  
  5. REM -- Checks for fincalc directory and deletes all files before the
  6. REM -- the install.exe program runs.  This is to eliminate unwanted
  7. REM -- data files for a new install.
  8.  
  9. REM DISPLAY I am processing the batch file requests please wait...
  10.  
  11. IF NOT-ISDIRECTORY C:\FINCALC GOTO END
  12. CD C:\FINCALC
  13. DEL F*.*
  14. DEL L*.*
  15. DEL B*.*
  16. DEL I*.*
  17. DEL M*.*
  18. DEL P*.*
  19. DEL S*.*
  20. DEL C*.*
  21. DEL H*.*
  22. DEL K*.*
  23. DEL U*.*
  24. DEL W*.*
  25.  
  26. :END
  27. EXIT
  28.